.banner {
  width: 100%;
  height: auto;
  background-color: #fff;
}

.banner-top {
  padding-top: 25px;
}

.banner .swiper-btn {
  height: 100%;
}


.banner .swiper-container .swiper-pagination {
  right: 50%;
  margin-right: -565px;
  bottom: 15px;
}

.banner .swiper-container .swiper-pagination-bullet {
  width: 60px;
  height: 2px;
  margin: 0 5px;
  border-radius: 0;
  background-color: #fff;
  opacity: 1;
}

.banner .swiper-container .swiper-pagination-bullet-active {
  background-color: #1848BC;
}

.banner .swiper-button-next {
  right: 50%;
  margin-right: -565px;
  background-image: url('../img/left.png');
}

.banner .swiper-button-next:hover {
  background-image: url('../img/left_hover.png');
}

.banner .swiper-button-prev {
  left: 50%;
  margin-left: -565px;
  background-image: url('../img/right.png');
}

.banner .swiper-button-prev:hover {
  background-image: url('../img/right_hover.png');
}


@media (min-width: 768px) {
  .banner .swiper-button-next,
  .banner .swiper-container .swiper-pagination {
    margin-right: -375px;
  }
  .banner .swiper-button-prev {
    margin-left: -375px;
  }
}

@media (min-width: 992px) {
  .banner .swiper-button-next,
  .banner .swiper-container .swiper-pagination {
    margin-right: -485px;
  }
  .banner .swiper-button-prev {
    margin-left: -485px;
  }
}

@media (min-width: 1200px) {
  .banner .swiper-button-next,
  .banner .swiper-container .swiper-pagination {
    margin-right: -565px;
  }
  .banner .swiper-button-prev {
    margin-left: -565px;
  }
}

.news {
  background-color: #fff;
  padding: 25px 0 15px;
}

.l-news-title {
  position: relative;
}

.l-news-title .title {
  width: 540px;
  line-height: 60px;
  border-bottom: .5px solid #ABB0BB;
  font-size: 30px;
  color: #1848BC;
  text-align: center;
  margin: 0 auto;
  font-family: font-max;
  position: relative;
}

.l-news-title .title::before {
  content: '';
  width: 195px;
  height: 3px;
  background: #1848BC;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: -2px;
}

.l-news-title .more {
  font-size: 12px;
  color: #AAAEB5;
  font-family: font-max;
  line-height: 60px;
  position: absolute;
  right: 0;
  top: 0;
}

.l-news-title .more .glyphicon {
  margin-left: 2px;
  font-size: 10px;
}

.news .news-list {
  padding: 25px 0;
}

.news .news-list .news-list-item {
  display: block;
  width: 100%;
  height: 420px;
  padding: 20px 25px;
  border: 1px solid #AAAEB5;
  position: relative;
}

.news .news-list .news-list-item:hover {
  box-shadow: #AAAEB5 0px 0px 12px;
}

.news .news-list .news-list-item::before,
.news .news-list .news-list-item::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all .2s linear;
  background: #1848BC;
  transition-delay: 0s;
}

.news .news-list .news-list-item::after {
  left: 0;
  bottom: 0;
}

.news .news-list .news-list-item::before {
  right: 0;
  top: 0;
}

.news .news-list .news-list-item:hover::before,
.news .news-list .news-list-item:hover::after {
  transition-delay: .2s;
  width: 100%;
}

.news .news-list .news-list-item .item-warp {
  width: 100%;
  height: 100%;
}

.news .news-list .news-list-item .item-warp::before,
.news .news-list .news-list-item .item-warp::after {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all .2s linear;
  background: #1848BC;
  transition-delay: .2s;
}

.news .news-list .news-list-item .item-warp::after {
  right: 0;
  top: 0;
}

.news .news-list .news-list-item .item-warp::before {
  left: 0;
  top: 0;
}

.news .news-list .news-list-item:hover .item-warp::before,
.news .news-list .news-list-item:hover .item-warp::after {
  height: 100%;
  transition-delay: 0s;
}

.news .news-list .news-list-item .time {
  color: #AAAEB5;
  font-size: 23px;
  font-weight: 400;
  font-family: font-max;
}

.news .news-list .news-list-item .title {
  margin: 20px 0;
  height: 81px;
  box-sizing: content-box;
  font-weight: 400;
  font-size: 15px;
  color: #353535;
  line-height: 27px;
  font-family: font-max;
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news .news-list .news-list-item .img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news .news-list .news-list-item .view {
  padding-top: 20px;
  font-weight: 400;
  font-size: 12px;
  line-height: 27px;
  color: #AAAEB5;
  position: relative;
}

.news .news-list .news-list-item .view::before {
  content: '';
  border: solid #AAAEB5;
  display: inline-block;
  border-width: 0 1px 1px 0;
  padding: 1px 0px 3px 70px;
  transform: skewX(45deg) translateX(-3px);
  position: absolute;
  left: 0;
  bottom: -5px;
}

.news .news-list .news-list-item:hover .title,
.news .news-list .news-list-item:hover .view {
  color: #1848BC;
}

.news .news-list .news-list-item:hover .view::before {
  border-color: #1848BC;
}


.dynamic {
  background-color: #fff;
  padding: 25px 0;
}

.dynamic .l-news-title .title {
  width: 100%;
  padding-left: 47px;
  text-align: left;
}

.dynamic .l-news-title .title::before {
  left: 10px;
  transform: none;
}

.dynamic .row {
  margin-right: -40px;
  margin-left: -40px;
}

.dynamic .row .col-md-6 {
  padding-right: 40px;
  padding-left: 40px;
}

.dynamic .dynamic-list-swiper {
  height: 450px;
  padding: 20px 0;
}

.dynamic .dynamic-list-swiper img {
  height: 380px;
  object-fit: cover;
}

.dynamic .dynamic-list-swiper .swiper-slide .title {
  width: 100%;
  height: 65px;
  padding: 0 30px;
  line-height: 65px;
  background-color: rgba(0, 0, 0, .5);
  font-size: 16px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: font-max;
  position: absolute;
  bottom: 30px;
  left: 0;
}

.dynamic .dynamic-list-swiper .swiper-pagination {
  text-align: right;
}

.dynamic .dynamic-list-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 25px;
  height: 25px;
  font-size: 10px;
  line-height: 25px;
  text-align: center;
  background: #FFFFFF;
  border-radius: 2px;
  border: 1px solid #ABB0BB;
  font-weight: bold;
  opacity: 1;
}

.dynamic .dynamic-list-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid #1848BC;
  background-color: #1848BC;
  color: #fff;
}

.dynamic .dynamic-list-warp {
  margin: 10px 0;
}

.dynamic .dynamic-list-warp .list-group-item {
  padding: 10px 0;
  margin-bottom: 0;
  border: none;
  border-bottom: 0.5px solid #ABB0BB;
  border-radius: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: font-max;
  font-size: 15px;
}

.dynamic .dynamic-list-warp a.list-group-item:focus,
.dynamic .dynamic-list-warp a.list-group-item:hover {
  color: #1848BC;
  background-color: inherit;
}

.banner-center {
  box-sizing: content-box;
  background-color: #fff;
  padding: 25px 0;
}

.award-winning-books {
  background-color: #fff;
  padding: 25px 0;
}

.books-tags {
  text-align: center;
  padding: 50px 0;
}

.books-tags span {
  margin: 0 6px;
  font-family: font-max;
  font-size: 15px;
  color: #565656;
  cursor: pointer;
  position: relative;
}

.books-tags span::before {
  content: '';
  width: 1px;
  height: 15px;
  background-color: #565656;
  position: absolute;
  right: -7px;
  top: 0;
}

.books-tags span:last-child::before {
  content: none;
}

.books-tags span:hover,
.books-tags span.active {
  color: #1848BC;
}

.books-list-warp {
  display: flex;
  flex-wrap: wrap;
  margin-right: -60px;
  margin-left: -60px;
}

.books-list-warp.books-list-warp-5 {
  margin-right: -40px;
  margin-left: -40px;
}

.books-list-warp .books-list-item {
  padding-bottom: 30px;
  padding-right: 30px;
  padding-left: 30px;
}

.books-list-warp .books-list-item.books-list-item-5 {
  width: 20%;
  padding-bottom: 30px;
  padding-right: 40px;
  padding-left: 40px;
}

.books-list-warp .books-list-item .books-list-item-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 230px;
  border: 1px solid #f5f6f7;
  background-color: #f5f6f7;
}

.books-list-warp .books-list-item img {
  width: 100%;
  height: 100%;
}

.books-list-warp .books-list-item .title {
  height: 54px;
  line-height: 27px;
  margin-top: 10px;
  text-align: center;
  font-size: 15px;
  color: #565656;
  font-family: font-max;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.books-list-warp .books-list-item:hover img {
  box-shadow: rgba(0,0,0,.6) 0px 0px 18px;
}

.books-list-warp .books-list-item:hover .title {
  color: #1848BC;
}

.platform {
  background-color: #fff;
  padding: 25px 0;
}

.platform .row {
  margin-right: -10px;
  margin-left: -10px;
}

.platform .row .col-md-2 {
  padding-top: 20px;
  padding-right: 10px;
  padding-left: 10px;
}

.platform .platform-list {
  padding-top: 30px;
}

.platform .platform-list .paltform-list-item {
  height: 56px;
  display: block;
  background-color: #fff;
  padding: 5px 0;
  box-shadow: #AAAEB5 0px 0px 12px;
  text-align: center;
  position: relative;
}

.platform .platform-list .paltform-list-item span {
  display: none;
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #fff;
  background-color: #1848BC;
  font-family: font-max;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  line-height: 56px;
}

.platform .platform-list .paltform-list-item:hover span {
  display: block;
}

.platform .platform-list .paltform-list-item img {
  height: 100%;
  width: auto;
}

.service {
  background-color: #fff;
  padding: 25px 0;
}

.service .service-list {
  width: 100%;
  padding-top: 50px;
}

.service .service-list .service-list-item {
  float: left;
  display: inline-block;
  width: 20%;
  text-align: center;
}

.service .service-list .service-list-item .img {
  text-align: center;
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 50%;
  border: 2px solid #AAB2C5;
  background-color: #D6DCE8;
  margin: 0 auto;
}

.service .service-list .service-list-item .img img {
  width: 80px;
  height: auto;
}

.service .service-list .service-list-item .title {
  margin-top: 15px;
  font-size: 18px;
  font-family: font-max;
  font-weight: 400;
  color: #9FA8BA;
}

.service .service-list .service-list-item:hover .img {
  background-color: #1848BC;
  border-color: #1848BC;
}

.service .service-list .service-list-item:hover .title {
  color: #1848BC;
}

.honor,
.topics {
  background-color: #fff;
  padding: 25px 0 50px;
}

.honor .honor-swiper,
.topics .topics-swiper {
  padding-top: 50px;
}

.topics .topics-swiper .swiper-slide {
  height: 135px;
}

.honor .honor-swiper .swiper-slide {
  height: 170px;
}

.honor .honor-swiper .swiper-slide a {
  height: 100%;
  box-shadow: #AAAEB5 0px 0px 12px;
}

.topics .topics-swiper .swiper-slide img {
  object-fit: cover;
  height: 100%;
}

.honor .honor-swiper .swiper-slide img {
  height: 100%;
}

.honor .honor-swiper .swiper-button-next,
.honor .honor-swiper .swiper-button-prev,
.topics .topics-swiper .swiper-button-next,
.topics .topics-swiper .swiper-button-prev {
  width: 38px;
  height: 20px;
  line-height: 20px;
  background: #FFFFFF;
  border: 1px solid #AAAEB5;
  text-align: center;
  top: 40px;
}

.honor .honor-swiper .glyphicon,
.topics .topics-swiper .glyphicon {
  color: #AAAEB5;
  font-size: 12px;
}

.honor .honor-swiper .swiper-button-next:hover .glyphicon,
.honor .honor-swiper .swiper-button-prev:hover .glyphicon,
.topics .topics-swiper .swiper-button-next:hover .glyphicon,
.topics .topics-swiper .swiper-button-prev:hover .glyphicon {
  color: #1848BC;
}

.honor .honor-swiper .swiper-button-next,
.topics .topics-swiper .swiper-button-next {
  right: 0;
}

.honor .honor-swiper .swiper-button-prev,
.topics .topics-swiper .swiper-button-prev {
  left: inherit;
  right: 48px;
}

.books-list-warp .books-list-warp--img {
  width: 100%;
  height: 255px;
}

@media (max-width: 768px) {
  .l-news-title .title {
    width: 100%;
  }
  .dynamic .l-news-title .title {
    padding-left: 0;
    text-align: center;
  }
  .dynamic .l-news-title .title::before {
    left: 50%;
    transform: translate(-50%);
  }
  .news .news-list .news-list-item {
    margin-top: 10px;
  }
  .honor .honor-swiper .swiper-slide {
    height: 90px;
  }
  .books-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
  }
  .books-tags span::before {
    top: 3px;
  }
  .books-list-warp.books-list-warp-5,
  .books-list-warp {
    margin-right: -15px;
    margin-left: -15px;
  }
  .books-list-warp .books-list-item {
    padding-bottom: 10px;
    padding-right: 10px;
    padding-left: 10px;
  }
  .books-list-warp .books-list-warp--img {
    height: 175px;
  }
  .books-list-warp.books-list-warp-5 {
    margin-right: -15px;
    margin-left: -15px;
  }
  .books-list-warp .books-list-item.books-list-item-5 {
    width: 50%;
    padding-bottom: 15px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .service .service-list {
    display: flex;
    width: 100%;
    padding-top: 50px;
    justify-content: space-between;
  }
  .service .service-list .service-list-item {
    float: left;
    display: inline-block;
    width: 18%;
    text-align: center;
  }
  .service .service-list .service-list-item .img {
    width: 64px;
    height: 64px;
    line-height: 64px;
  }
  .service .service-list .service-list-item .img img {
    width: 50%;
  }
  .service .service-list .service-list-item .title {
    font-size: 12px;
  }
  .dynamic .row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .dynamic .row .col-md-6 {
    padding-right: 15px;
    padding-left: 15px;
  }

  .news .news-list {
    padding-bottom: 40px;
  }

  .news .news-list .swiper-pagination {
    text-align: right;
    bottom: 0px;
  }

  .news .news-list .swiper-pagination .swiper-pagination-bullet {
    width: 25px;
    height: 25px;
    font-size: 10px;
    line-height: 25px;
    text-align: center;
    background: #FFFFFF;
    border-radius: 2px;
    border: 1px solid #ABB0BB;
    font-weight: bold;
    opacity: 1;
  }

  .news .news-list .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 1px solid #1848BC;
    background-color: #1848BC;
    color: #fff;
  }

}